This is also defined in sys/ptrace.h on arm64 which breaks the tools build due
to multiple definitions. I expect this is really a bug in the kernel and/or
glibc but we don't really need this symbol in the public headers, at least not
right now, so move it into include/asm instead.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
#include <xen/config.h>
#include <asm/asm_defns.h>
+#include <asm/regs.h>
#include <public/xen.h>
#define SAVE_ONE_BANKED(reg) mrs r11, reg; str r11, [sp, #UREGS_##reg]
#include <xen/config.h>
#include <asm/asm_defns.h>
+#include <asm/regs.h>
#include <public/xen.h>
/*
#ifndef __ARM_REGS_H__
#define __ARM_REGS_H__
+#define PSR_MODE_MASK 0x1f
+
+#ifndef __ASSEMBLY__
+
#include <xen/types.h>
#include <public/xen.h>
#include <asm/processor.h>
*/
extern register_t *select_user_reg(struct cpu_user_regs *regs, int reg);
+#endif
+
#endif /* __ARM_REGS_H__ */
/*
* Local variables:
/* PSR bits (CPSR, SPSR)*/
-/* 0-4: Mode */
-#define PSR_MODE_MASK 0x1f
-
/* 32 bit modes */
#define PSR_MODE_USR 0x10
#define PSR_MODE_FIQ 0x11